#!/usr/bin/env bash
PKMKPIDFORAPP="$1/Contents/Resources/pkmkpidforapp"

RESULT=`"$PKMKPIDFORAPP" 'com.apple.frontrow' 'Front Row'`
if [ $RESULT -gt 0 ]; then
	RESULT=`/bin/kill -9 $RESULT`
fi

exit 0
